NULL terminate the arg list to g_strconcat() (thanx raph).
authorTim Janik <timj@gtk.org>
Mon, 17 Aug 1998 05:49:13 +0000 (05:49 +0000)
committerTim Janik <timj@src.gnome.org>
Mon, 17 Aug 1998 05:49:13 +0000 (05:49 +0000)
Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
        (thanx raph).

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkmain.c

index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 7f945d4e329e910b5068d9fcbf03990a761b4f0e..f24feb8436148975fd158bf25cd6b65375e52c3e 100644 (file)
@@ -1,3 +1,8 @@
+Mon Aug 17 07:47:43 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkmain.c (gtk_init): NULL terminate the arg list to g_strconcat()
+       (thanx raph).
+
 Sun Aug 16 23:14:20 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
 
        * NEWS: updated for 1.1.2
index 19c6d2f79f23064fc7f0d213f79281284800f2ac..9280eac812f93c2b9add8318929878de6d2b0fb5 100644 (file)
@@ -330,7 +330,7 @@ gtk_init (int        *argc,
                   module_name[2] == 'b'))
                module_name = g_strdup (module_name);
              else
-               module_name = g_strconcat ("lib", module_name, ".so");
+               module_name = g_strconcat ("lib", module_name, ".so", NULL);
              (*argv)[i] = NULL;
              
              if (g_module_supported ())